نتایج جستجو برای: vta

تعداد نتایج: 1631  

Firouz Ghaderi Pakdel, Mostafa Ashrafi Osalou, Parviz Shahabi, Sanaz Amirabadi, Somayyeh Naderi, Ulker Cankurt,

Introduction: The most common interpretation for the mechanisms of antidepression is the increase of the brain monoamine levels such as dopamine (DA). The increase of DA can reduce depression but it can also decrease the monoamine release because of autoreceptor inhibition. Although bupropion can decrease the dopamine release, there is evidence about stimulatory effects of chronic application o...

2012
Elyssa B. Margolis Brian Toy Patricia Himmels Marisela Morales Howard L. Fields

The canonical two neuron model of opioid reward posits that mu opioid receptor (MOR) activation produces reward by disinhibiting midbrain ventral tegmental area (VTA) dopamine neurons through inhibition of local GABAergic interneurons. Although indirect evidence supports the neural circuit postulated by this model, its validity has been called into question by growing evidence for VTA neuronal ...

Journal: :The Journal of comparative neurology 2014
Seth R Taylor Sylvia Badurek Ralph J Dileone Raad Nashmi Liliana Minichiello Marina R Picciotto

The role of dopaminergic (DA) projections from the ventral tegmental area (VTA) in appetitive and rewarding behavior has been widely studied, but the VTA also has documented DA-independent functions. Several drugs of abuse, act on VTA GABAergic neurons, and most studies have focused on local inhibitory connections. Relatively little is known about VTA GABA projection neurons and their connectio...

Journal: :Synapse 2000
B Schilström M V Fagerquist X Zhang P Hertel G Panagis G G Nomikos T H Svensson

We have previously provided evidence that the stimulatory action of systemic nicotine on dopamine release in the rat nucleus accumbens is initiated in the ventral tegmental area (VTA), and that it appears to be mediated partly through an indirect, presynaptic mechanism. Thus, it was found that blockade of N-methyl-D-aspartate (NMDA) receptors in the VTA attenuates the enhancing effect of nicoti...

Journal: :The Journal of pharmacology and experimental therapeutics 2011
Sheketha R Hauser Zheng-Ming Ding Bruk Getachew Jamie E Toalston Scott M Oster William J McBride Zachary A Rodd

The mesolimbic dopamine (DA) system is involved in the rewarding process of drugs of abuse and is activated during the anticipation of drug availability. However, the neurocircuitry that regulates ethanol (EtOH)-seeking has not been adequately investigated. The objectives of the present study were to determine 1) whether the posterior ventral tegmental area (p-VTA) mediates EtOH-seeking, 2) whe...

Journal: :The Journal of neuroscience : the official journal of the Society for Neuroscience 2010
Alice Dobi Elyssa B Margolis Hui-Ling Wang Brandon K Harvey Marisela Morales

The ventral tegmental area (VTA) contributes to reward and motivation signaling. In addition to the well established populations of dopamine (DA) or GABA VTA neurons, glutamatergic neurons were recently discovered in the VTA. These glutamatergic neurons express the vesicular glutamate transporter 2, VGluT2. To investigate whether VTA glutamatergic neurons establish local synapses, we tagged axo...

Journal: :The Journal of pharmacology and experimental therapeutics 2004
L E O'Dell L H Parsons

Previous work has demonstrated that peripheral serotonin(1B) (5-HT(1B)) receptor agonist administration facilitates the behavioral and neurochemical effects of cocaine. This study used dual probe microdialysis to investigate whether activation of serotonin(1B) (5-HT(1B)) receptors in the ventral tegmental area (VTA) alters the ability of peripherally administered cocaine to elevate dopamine (DA...

Journal: :basic and clinical neuroscience 0
mahsa moaddab mojtaba kermani pegah azizi abbas haghparast

this study has examined the functional importance of nucleus accumbens (nac)-ventral tegmental area (vta) interactions. as it is known, this interaction is important in associative reward processes. under urethane anesthesia, extracellular single unit recordings of the shell sub-region of the nucleus accumbens (nacsh) neurons were employed to determine the functional contributions of the vta to...

Abbas Haghparast, Ronak Azizbeigi, Zahra Farzinpour,

Introduction: Orexin-containing neurons exist in the lateral hypothalamic region, sending their projections toward mesolimbic regions such as the Ventral Tegmental Area (VTA). Methods: In the current study, a Reinstatement model is used to examine the effects of intra-VTA administration of SB334867 as an Orexin-1 Receptor (OX1R) antagonist on drug priming- and Forced Swim Stress (FSS)-induced ...

Journal: :The Journal of neuroscience : the official journal of the Society for Neuroscience 2011
Jonas A Hosp Ana Pekanovic Mengia S Rioult-Pedotti Andreas R Luft

The primary motor cortex (M1) of the rat contains dopaminergic terminals. The origin of this dopaminergic projection and its functional role for movement are obscure. Other areas of cortex receive dopaminergic projections from the ventral tegmental area (VTA) of the midbrain, and these projections are involved in learning phenomena. We therefore hypothesized that M1 receives a dopaminergic proj...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->