<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Juicy Magazine</title>
	<atom:link href="http://www.juicymagonline.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.juicymagonline.com</link>
	<description>Celebrity news, entertainment news, movie news, music news, and the hottest celebrity photos on Juicy</description>
	<lastBuildDate>Wed, 19 Jun 2013 12:05:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Roll Through: The 40th Annual Daytime Emmy Awards!!!</title>
		<link>http://www.juicymagonline.com/celeb/2013/06/roll-through-the-40th-annual-daytime-emmy-awards/</link>
		<comments>http://www.juicymagonline.com/celeb/2013/06/roll-through-the-40th-annual-daytime-emmy-awards/#comments</comments>
		<pubDate>Wed, 19 Jun 2013 12:05:11 +0000</pubDate>
		<dc:creator>JUICY STAFF</dc:creator>
				<category><![CDATA[Celeb]]></category>
		<category><![CDATA[40TH Emmy Awards]]></category>
		<category><![CDATA[Aisha Tyler]]></category>
		<category><![CDATA[Angell Conwell]]></category>
		<category><![CDATA[Majorie Brdiges Woods]]></category>
		<category><![CDATA[more photos]]></category>
		<category><![CDATA[Sal Towers]]></category>
		<category><![CDATA[steve harvey]]></category>
		<category><![CDATA[Steve Harvey Wife]]></category>
		<category><![CDATA[Talk Soup]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=61312</guid>
		<description><![CDATA[Over the weekend, the 40th annual Daytime Emmy Awards commenced.

Honoring the best in daytime television, the 40th annual Daytime Emmy Awards was filled with surprises this year.

Celebs like <strong>STEVIE HARVEY</strong> along with wife<strong> MAJORIE BRIDGES WOODS</strong>, <strong>ANGELL CONWELL</strong> and <strong>SAL TOWERS</strong> hit the red carpet prior to the big ceremony.

Things got a little awkward during the ceremony as former <em>Talk Soup</em> host, AISHA TYLER revealed that she'd been given the wrong envelope as she stood to present the Outstanding Talk Show award.

Luckily for TYLER she played it cool and saved the day with her quick thinking...]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">
 
        var $ = jQuery.noConflict();
        var curImg = get_anchor();

        function prev_img(totalImages){
            if( curImg > 1 ){
                prevImg = curImg - 1;
            }
            else{ 
                prevImg = totalImages;
            }
            refresh(imgData[prevImg][0], imgData[prevImg][1], imgData[prevImg][2], prevImg, totalImages , imgData[prevImg][3]);
        }

        function next_img(totalImgs){

            curImg = parseInt(curImg);

            if(curImg == totalImgs){
            var nextImg = 1;
            }
            else{
            var nextImg = curImg + 1;
            }

            refresh(imgData[nextImg][0], imgData[nextImg][1], imgData[nextImg][2], nextImg, totalImgs, imgData[nextImg][3]);

        }
       
        function track_pageview(args){
            
            /////////////////////////////////////
        	// Track refresh in Google Analytics
        	/////////////////////////////////////
        	
        	var ref = (typeof args.ref == 'undefined') ? "" : args.ref;
        	var url = (typeof args.url == 'undefined') ? "" : args.url;
        	var pageTracker = _gat._getTracker("UA-932072-14");
        	pageTracker._trackPageview(url + ref); 
        }        
        
        function reloadAd(adSize, h_ord, w, h){
            ////////////////////////
            // Method to reload ads
            ////////////////////////
            
        	h_tile+=1;
        	frameId='frame-'+adSize;

        	if(!document.getElementById(frameId)){
        			var adFrame = $("<iframe />")
        			var adSrc   = '/php/ads/ad-tags.php?h_ord='+h_ord+'&size='+adSize+'&section='+section+'&post='+post+'&h_tile='+h_tile;
         			adFrame.attr("src",adSrc);
        			adFrame.attr("scrolling","no");
        			adFrame.attr("width",w);
        			adFrame.attr("height",h);
        			adFrame.attr("frameborder",0)
        			var adDiv = $("#"+adSize);
        			adDiv.empty();
        			adDiv.append(adFrame);
        	}else{
        		document.getElementById(frameId).src = '/php/ads/ad-tags.php?h_ord='+h_ord+'&size='+adSize+'&section='+section+'&post='+post+'&h_tile='+h_tile;
        	}
        return true;
        }
        
        function refresh(imgUrl, imgTitle, imgDescription, index, numImages, largeURL){
            //////////////////////////////////////
            //  Refresh image, ads, and wallpaper
            //////////////////////////////////////
            
            // Change Image, Title, Description
            $('#sg-enlarge').attr("href", largeURL);
            loadImg(imgUrl , '#sg-main-image' );
                if(imgTitle=='' && imgDescription==''){
                    $('#sg-caption').css({'display':'none'});   
                }else{
                    $('#sg-caption').css({'display':'block'});
                    if(imgTitle!=''){
                        $('#sg-image-title').css({'display':'block'});
                        $('#sg-gallery_image').attr("alt", imgTitle);
                        $('#sg-gallery_image').attr("title", imgTitle);
                        $('#sg-image-title').html(imgTitle);
                    }else{
                        $('#sg-image-title').css({'display':'none'});
                    }
            
                    if(imgDescription!=''){
                        $('#sg-image-description').css({'display':'block'});
                        $('#sg-image-description').html(imgDescription);
                    }else{
                        $('#sg-image-description').css({'display':'none'});
                    }
                }
    	
            // refresh ads
            //  CampaignManager.look();
            h_tile=0;
            $(adArray).each(function(index){
                switch(adArray[index].substring(0,1)){
                    case 'l':
                        w = 728;
                        h = 90;
                        break;
                    case 'm':
                        w = 300;
                        h = 250;
                        break;
                    case 's':
                        w = 160;
                        h = 600;
                        break;
                }
                reloadAd(adArray[index], h_ord, w, h);
            })

            track_pageview({url:get_page_url(document.location.pathname)});

            // Change URL
            set_anchor(index);
            prevImg = curImg;
            curImg = index;

            // Image 1 of totalImage
            $('#sg-curImage').html(curImg + ' ');
        }

        function get_page_url(url){
        var page = url+'#'+curImg;
        return page;
        }

        function get_anchor(){
        var re = /#[0-9]+$/; 
        var match = re.exec(document.location.toString());
        hash = 1;
        if (match != null) var hash = match[0].substr(1);
        return hash;
        }
   
        function set_anchor(anchor){
        ////////////////////////
        // Add anchor tag to URL
        ////////////////////////
        
        //remove existing anchors
        var url = document.location.toString();
        var re = /#[0-9]+$/;
        url = url.replace(re, '');
        document.location = url + '#' + anchor;
        }
        
        function loadImg(url, target){
            var page_request = false
            
            h = $(target).height();
            w = $(target).width();
            $(target).empty();
            $(target).css({"width":w,"height":h,"background":"url(/images/juicy2010/juicy-ajax-loader.gif) no-repeat center center"})
            
            var fileref = document.createElement("img");
   
            if (window.XMLHttpRequest){ // if Mozilla, Safari etc
                page_request = new XMLHttpRequest();
     
            }else if (window.ActiveXObject){ // if IE
                try {
                    page_request = new ActiveXObject("Msxml2.XMLHTTP")
                }
                catch (e){
                    try{
                        page_request = new ActiveXObject("Microsoft.XMLHTTP")
                    }
                    catch (e){
                    }
                }
            }else{
                return false;
            }

            page_request.onreadystatechange=function(){
                if (page_request.readyState==4 && page_request.status==200){
                    $(target).empty();
                    fileref.setAttribute("src", url);
                    $(target).append(fileref);
                    $(target).css({"width":"auto","height":"auto","background":"url()"})
                }
            }
			
			
            /*try {
					page_request.open('GET', url, true)
				}
				catch(e)
				{
					page_request.open('GET', url.replace(/web1/,'www'), true)
				};*/
            
			page_request.open('GET', url, true);
			page_request.send(null);
        };
		
        function loadFile(url, filetype, success) {
            done = false;
            var head = document.getElementsByTagName('head')[0];

            if (window.XMLHttpRequest){ // if Mozilla, Safari etc
                page_request = new XMLHttpRequest();
     
            }else if (window.ActiveXObject){ // if IE
                try {
                    page_request = new ActiveXObject("Msxml2.XMLHTTP")
                }
                catch (e){
                    try{
                        page_request = new ActiveXObject("Microsoft.XMLHTTP")
                    }
                    catch (e){
                    }
                }
            }else{
                return false;
            }
            
            page_request.onreadystatechange=function(){
                if (page_request.readyState==4 && page_request.status==200){
      
                    if(filetype=="js"){ //if filename is a external JavaScript file
                        var fileref=document.createElement('script');
                        fileref.setAttribute("type","text/javascript");
                        fileref.setAttribute("src", url);
                    }
                    else if(filetype=="css"){ //if filename is an external CSS file
                        var fileref=document.createElement("link");
                        fileref.setAttribute("rel", "stylesheet")
                        fileref.setAttribute("type", "text/css");
                        fileref.setAttribute("href", url);
                    }
                    head.appendChild(fileref);
                }
            }
			
			/*try
			{
				page_request.open('GET', url, true);
			}
			catch(e)
			{
				page_request.open('GET', url.replace(/web1/,'www'), true);
			}*/
			
			page_request.open('GET', url, true);
			page_request.send(null);
        };
        
        function buildAdArray(){
        	adArray = [];
        	$(".ad-slot").each(function(){
        		adArray.push($(this).attr("id"))
        	})
        }

        function sgGalleryInit(){
            if(typeof imgData != "undefined"){
                
                var totalImgs = $(imgData).size();
                    totalImgs -=1;

                var prevClick = 'prev_img(' + totalImgs + ');return false;';
                var nextClick = 'next_img(' + totalImgs + ');return false';

                var topControls = '';
                topControls += '<span id="sg-image-count"><span id="sg-curImage">' + curImg + ' <\/span>of ' + totalImgs + '<\/span>';
                topControls += '<div id="sg-top-btns">';
                topControls += '<a href='+imgData[curImg][3]+' id="sg-enlarge" target="_blank">ENLARGE</a>';
                topControls += '<a href="#" class="back" onclick="'+ prevClick +'"><span>Previous</span><\/a>';
                topControls += '<a href="#" class="next" onclick="'+ nextClick +'"><span>Next</span><\/a>';
                topControls += '<\/div>'
                $('#sg-top-controls').html(topControls);

                var photoOverlayNav = '';
                photoOverlayNav +='<div id="sg-prev-button" onclick="'+ prevClick +'"><span><\/span><\/div>';
                photoOverlayNav +='<div id="sg-next-button" onclick="'+ nextClick +'"><span><\/span><\/div>';
                $('#sg-image-container').prepend(photoOverlayNav);

                // Display Main Image
                anchor = get_anchor();
                if(anchor){
                    thisImg = imgData[anchor];
                }else{
                    thisImg = imgData[1];
                }

                //Display Photo, Caption, and Description
                $('#sg-main-image').html('<img id="sg-gallery_image" src="' + thisImg[0] + '"' + ' title="'+thisImg[1]+'"'+' alt="' + thisImg[1] + '">');
                
                if(imgData[anchor][1]=='' && imgData[anchor][2]==''){
                    $('#sg-caption').css({'display':'none'});   
                }else{
                    if(imgData[anchor][1]!=''){
                        $('#sg-image-title').html(imgData[anchor][1]);  
                    }else{
                        $('#sg-image-title').css({'display':'none'});
                    }
            
                    if(imgData[anchor][2]!=''){
                        $('#sg-image-description').html(imgData[anchor][2]);
                    }else{
                        $('#sg-image-description').css({'display':'none'});
                    }
                }
                
                //$('#sg-image-title').html(imgData[anchor][1]);
                //$('#sg-image-description').html(imgData[anchor][2]);

                if(typeof thumbData != "undefined"){
                    for(var x in thumbData ){
                        $('#sg-thumbnails').append('<a style="cursor:pointer;" onClick="refresh(imgData['+x+'][0], imgData['+x+'][1], imgData['+x+'][2], '+x+', '+ totalImgs +', imgData['+x+'][3]);"><img id="thumb-'+ x +'" src="' + thumbData[x] + '"><\/a>');
                    }
                }
                
                buildAdArray();
            }
        }
  
        $(function(){
            
                        
                        	    loadFile("http://www.juicymagonline.com/wp-content/plugins/superGiant-gallery/css/sG-gallery-styles.css", "css", sgGalleryInit() ); // dynamically load and add this .css file    			
   
    		
        }); // Closes jQuery Function
                
</script>
<p><script>var imgData = new Array();imgData[1]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/006Beauty1.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/006Beauty1.jpg');
imgData[2]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/005Beauty1.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/005Beauty1.jpg');
imgData[3]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/004Beauty1.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/004Beauty1.jpg');
imgData[4]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/003Beauty1.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/003Beauty1.jpg');
imgData[5]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/002Beauty1.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/002Beauty1.jpg');
imgData[6]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/001Beauty1.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/001Beauty1.jpg');
</script><div id='sg-gallery' ><div id='sg-top-controls'></div><div id='sg-image-container'><div id='sg-main-image'></div></div><div id='sg-caption'><div id='sg-image-title'></div><div id='sg-image-description'></div></div></div>Over the weekend, the 40th annual Daytime Emmy Awards commenced.</p>
<p>Honoring the best in daytime television, the 40th annual Daytime Emmy Awards was filled with surprises.</p>
<p>Celebs like <strong>STEVIE HARVEY</strong> along with wife<strong> MAJORIE BRIDGES WOODS</strong>, <strong>ANGELL CONWELL</strong> and <strong>SAL TOWERS</strong> hit the red carpet prior to the big ceremony.</p>
<p>Things got a little awkward during the ceremony as former <em>Talk Soup</em> host, AISHA TYLER revealed that she&#8217;d been given the wrong envelope as she stood to present the Outstanding Talk Show award.</p>
<p>Luckily for TYLER she played it cool and saved the day with her quick thinking. Check out the pictures above.</p>
<p><em><strong>Photo Source: Startraksphoto.com</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/celeb/2013/06/roll-through-the-40th-annual-daytime-emmy-awards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New and Improved Puckers: Carmex Summer Essentials!!!</title>
		<link>http://www.juicymagonline.com/beauty/2013/06/new-and-improved-puckers-carmex-summer-essentials/</link>
		<comments>http://www.juicymagonline.com/beauty/2013/06/new-and-improved-puckers-carmex-summer-essentials/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 16:37:59 +0000</pubDate>
		<dc:creator>JUICY STAFF</dc:creator>
				<category><![CDATA[Beauty]]></category>
		<category><![CDATA[Werkkkk!]]></category>
		<category><![CDATA[Carmex]]></category>
		<category><![CDATA[Carmex Lip Balm]]></category>
		<category><![CDATA[Lip Balm]]></category>
		<category><![CDATA[UVA]]></category>
		<category><![CDATA[UVB]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=61243</guid>
		<description><![CDATA[<strong>Carmex</strong> lip balms have long been a staple in caring for your lips. Known for their signature yellow tubes, and bright red caps, they have serve as priming lips for color to bringing relief to dry chapped puckers.

Now with the rise of skin cancer melanomas, primarily found in and around the mouth, being detected in African American women, it's now more important than ever to protect your pout and skin.

Carmex has introduced new and improved lip balms and skin lotions that are formulated with Broad Spectrum SPF 15, to moisturize and protect skin from UVA and UVB rays which age and damage skin prematurely and increase the risk of skin cancer.

One of the newer products, Carmex put 75 years of lipcare expertise into the Carmex Healing Cream, a  rich cream a part of Carmex's new lotion line. With a fast-absorbing formula that won’t wipe off on your clothes, immediately helps to heal your most troubled spots—such as feet, elbows and hands. 

Another great product is the Carmex® Ultra Smooth Vanilla Lip Balm Stick, an extra gentle water resistant stick that won’t stress chapped or cracked lips, and blends ultra-moisturizing ingredients with a light touch of vanilla flavor.

With new pomegranate and lime twist scents, to add to the original strawberry and cherry "flavors" there are now more of range of options to choose from with Carmex when deciding what’s best for you.

Check out <a href=" http://mycarmex.com/works" target="_blank">Carmex's</a> website, for more info and pricing details.
]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">
 
        var $ = jQuery.noConflict();
        var curImg = get_anchor();

        function prev_img(totalImages){
            if( curImg > 1 ){
                prevImg = curImg - 1;
            }
            else{ 
                prevImg = totalImages;
            }
            refresh(imgData[prevImg][0], imgData[prevImg][1], imgData[prevImg][2], prevImg, totalImages , imgData[prevImg][3]);
        }

        function next_img(totalImgs){

            curImg = parseInt(curImg);

            if(curImg == totalImgs){
            var nextImg = 1;
            }
            else{
            var nextImg = curImg + 1;
            }

            refresh(imgData[nextImg][0], imgData[nextImg][1], imgData[nextImg][2], nextImg, totalImgs, imgData[nextImg][3]);

        }
       
        function track_pageview(args){
            
            /////////////////////////////////////
        	// Track refresh in Google Analytics
        	/////////////////////////////////////
        	
        	var ref = (typeof args.ref == 'undefined') ? "" : args.ref;
        	var url = (typeof args.url == 'undefined') ? "" : args.url;
        	var pageTracker = _gat._getTracker("UA-932072-14");
        	pageTracker._trackPageview(url + ref); 
        }        
        
        function reloadAd(adSize, h_ord, w, h){
            ////////////////////////
            // Method to reload ads
            ////////////////////////
            
        	h_tile+=1;
        	frameId='frame-'+adSize;

        	if(!document.getElementById(frameId)){
        			var adFrame = $("<iframe />")
        			var adSrc   = '/php/ads/ad-tags.php?h_ord='+h_ord+'&size='+adSize+'&section='+section+'&post='+post+'&h_tile='+h_tile;
         			adFrame.attr("src",adSrc);
        			adFrame.attr("scrolling","no");
        			adFrame.attr("width",w);
        			adFrame.attr("height",h);
        			adFrame.attr("frameborder",0)
        			var adDiv = $("#"+adSize);
        			adDiv.empty();
        			adDiv.append(adFrame);
        	}else{
        		document.getElementById(frameId).src = '/php/ads/ad-tags.php?h_ord='+h_ord+'&size='+adSize+'&section='+section+'&post='+post+'&h_tile='+h_tile;
        	}
        return true;
        }
        
        function refresh(imgUrl, imgTitle, imgDescription, index, numImages, largeURL){
            //////////////////////////////////////
            //  Refresh image, ads, and wallpaper
            //////////////////////////////////////
            
            // Change Image, Title, Description
            $('#sg-enlarge').attr("href", largeURL);
            loadImg(imgUrl , '#sg-main-image' );
                if(imgTitle=='' && imgDescription==''){
                    $('#sg-caption').css({'display':'none'});   
                }else{
                    $('#sg-caption').css({'display':'block'});
                    if(imgTitle!=''){
                        $('#sg-image-title').css({'display':'block'});
                        $('#sg-gallery_image').attr("alt", imgTitle);
                        $('#sg-gallery_image').attr("title", imgTitle);
                        $('#sg-image-title').html(imgTitle);
                    }else{
                        $('#sg-image-title').css({'display':'none'});
                    }
            
                    if(imgDescription!=''){
                        $('#sg-image-description').css({'display':'block'});
                        $('#sg-image-description').html(imgDescription);
                    }else{
                        $('#sg-image-description').css({'display':'none'});
                    }
                }
    	
            // refresh ads
            //  CampaignManager.look();
            h_tile=0;
            $(adArray).each(function(index){
                switch(adArray[index].substring(0,1)){
                    case 'l':
                        w = 728;
                        h = 90;
                        break;
                    case 'm':
                        w = 300;
                        h = 250;
                        break;
                    case 's':
                        w = 160;
                        h = 600;
                        break;
                }
                reloadAd(adArray[index], h_ord, w, h);
            })

            track_pageview({url:get_page_url(document.location.pathname)});

            // Change URL
            set_anchor(index);
            prevImg = curImg;
            curImg = index;

            // Image 1 of totalImage
            $('#sg-curImage').html(curImg + ' ');
        }

        function get_page_url(url){
        var page = url+'#'+curImg;
        return page;
        }

        function get_anchor(){
        var re = /#[0-9]+$/; 
        var match = re.exec(document.location.toString());
        hash = 1;
        if (match != null) var hash = match[0].substr(1);
        return hash;
        }
   
        function set_anchor(anchor){
        ////////////////////////
        // Add anchor tag to URL
        ////////////////////////
        
        //remove existing anchors
        var url = document.location.toString();
        var re = /#[0-9]+$/;
        url = url.replace(re, '');
        document.location = url + '#' + anchor;
        }
        
        function loadImg(url, target){
            var page_request = false
            
            h = $(target).height();
            w = $(target).width();
            $(target).empty();
            $(target).css({"width":w,"height":h,"background":"url(/images/juicy2010/juicy-ajax-loader.gif) no-repeat center center"})
            
            var fileref = document.createElement("img");
   
            if (window.XMLHttpRequest){ // if Mozilla, Safari etc
                page_request = new XMLHttpRequest();
     
            }else if (window.ActiveXObject){ // if IE
                try {
                    page_request = new ActiveXObject("Msxml2.XMLHTTP")
                }
                catch (e){
                    try{
                        page_request = new ActiveXObject("Microsoft.XMLHTTP")
                    }
                    catch (e){
                    }
                }
            }else{
                return false;
            }

            page_request.onreadystatechange=function(){
                if (page_request.readyState==4 && page_request.status==200){
                    $(target).empty();
                    fileref.setAttribute("src", url);
                    $(target).append(fileref);
                    $(target).css({"width":"auto","height":"auto","background":"url()"})
                }
            }
			
			
            /*try {
					page_request.open('GET', url, true)
				}
				catch(e)
				{
					page_request.open('GET', url.replace(/web1/,'www'), true)
				};*/
            
			page_request.open('GET', url, true);
			page_request.send(null);
        };
		
        function loadFile(url, filetype, success) {
            done = false;
            var head = document.getElementsByTagName('head')[0];

            if (window.XMLHttpRequest){ // if Mozilla, Safari etc
                page_request = new XMLHttpRequest();
     
            }else if (window.ActiveXObject){ // if IE
                try {
                    page_request = new ActiveXObject("Msxml2.XMLHTTP")
                }
                catch (e){
                    try{
                        page_request = new ActiveXObject("Microsoft.XMLHTTP")
                    }
                    catch (e){
                    }
                }
            }else{
                return false;
            }
            
            page_request.onreadystatechange=function(){
                if (page_request.readyState==4 && page_request.status==200){
      
                    if(filetype=="js"){ //if filename is a external JavaScript file
                        var fileref=document.createElement('script');
                        fileref.setAttribute("type","text/javascript");
                        fileref.setAttribute("src", url);
                    }
                    else if(filetype=="css"){ //if filename is an external CSS file
                        var fileref=document.createElement("link");
                        fileref.setAttribute("rel", "stylesheet")
                        fileref.setAttribute("type", "text/css");
                        fileref.setAttribute("href", url);
                    }
                    head.appendChild(fileref);
                }
            }
			
			/*try
			{
				page_request.open('GET', url, true);
			}
			catch(e)
			{
				page_request.open('GET', url.replace(/web1/,'www'), true);
			}*/
			
			page_request.open('GET', url, true);
			page_request.send(null);
        };
        
        function buildAdArray(){
        	adArray = [];
        	$(".ad-slot").each(function(){
        		adArray.push($(this).attr("id"))
        	})
        }

        function sgGalleryInit(){
            if(typeof imgData != "undefined"){
                
                var totalImgs = $(imgData).size();
                    totalImgs -=1;

                var prevClick = 'prev_img(' + totalImgs + ');return false;';
                var nextClick = 'next_img(' + totalImgs + ');return false';

                var topControls = '';
                topControls += '<span id="sg-image-count"><span id="sg-curImage">' + curImg + ' <\/span>of ' + totalImgs + '<\/span>';
                topControls += '<div id="sg-top-btns">';
                topControls += '<a href='+imgData[curImg][3]+' id="sg-enlarge" target="_blank">ENLARGE</a>';
                topControls += '<a href="#" class="back" onclick="'+ prevClick +'"><span>Previous</span><\/a>';
                topControls += '<a href="#" class="next" onclick="'+ nextClick +'"><span>Next</span><\/a>';
                topControls += '<\/div>'
                $('#sg-top-controls').html(topControls);

                var photoOverlayNav = '';
                photoOverlayNav +='<div id="sg-prev-button" onclick="'+ prevClick +'"><span><\/span><\/div>';
                photoOverlayNav +='<div id="sg-next-button" onclick="'+ nextClick +'"><span><\/span><\/div>';
                $('#sg-image-container').prepend(photoOverlayNav);

                // Display Main Image
                anchor = get_anchor();
                if(anchor){
                    thisImg = imgData[anchor];
                }else{
                    thisImg = imgData[1];
                }

                //Display Photo, Caption, and Description
                $('#sg-main-image').html('<img id="sg-gallery_image" src="' + thisImg[0] + '"' + ' title="'+thisImg[1]+'"'+' alt="' + thisImg[1] + '">');
                
                if(imgData[anchor][1]=='' && imgData[anchor][2]==''){
                    $('#sg-caption').css({'display':'none'});   
                }else{
                    if(imgData[anchor][1]!=''){
                        $('#sg-image-title').html(imgData[anchor][1]);  
                    }else{
                        $('#sg-image-title').css({'display':'none'});
                    }
            
                    if(imgData[anchor][2]!=''){
                        $('#sg-image-description').html(imgData[anchor][2]);
                    }else{
                        $('#sg-image-description').css({'display':'none'});
                    }
                }
                
                //$('#sg-image-title').html(imgData[anchor][1]);
                //$('#sg-image-description').html(imgData[anchor][2]);

                if(typeof thumbData != "undefined"){
                    for(var x in thumbData ){
                        $('#sg-thumbnails').append('<a style="cursor:pointer;" onClick="refresh(imgData['+x+'][0], imgData['+x+'][1], imgData['+x+'][2], '+x+', '+ totalImgs +', imgData['+x+'][3]);"><img id="thumb-'+ x +'" src="' + thumbData[x] + '"><\/a>');
                    }
                }
                
                buildAdArray();
            }
        }
  
        $(function(){
            
                        
                        	    loadFile("http://www.juicymagonline.com/wp-content/plugins/superGiant-gallery/css/sG-gallery-styles.css", "css", sgGalleryInit() ); // dynamically load and add this .css file    			
   
    		
        }); // Closes jQuery Function
                
</script>
<script>var imgData = new Array();imgData[1]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/Carmex_Lotion_Group-615x697.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/Carmex_Lotion_Group-e1371573120291.jpg');
imgData[2]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/Carmex_Stick_Van_straight-533x800.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/Carmex_Stick_Van_straight-e1371573095936.jpg');
imgData[3]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/Healing_cream_tube-445x800.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/Healing_cream_tube-e1371573070201.jpg');
imgData[4]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/Carmex_Ultra_Vanilla-533x800.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/Carmex_Ultra_Vanilla-e1371572868478.jpg');
</script><div id='sg-gallery' ><div id='sg-top-controls'></div><div id='sg-image-container'><div id='sg-main-image'></div></div><div id='sg-caption'><div id='sg-image-title'></div><div id='sg-image-description'></div></div></div>
<p><strong>Carmex</strong> lip balms have long been a staple in caring for your lips. Known for their signature yellow tubes, and bright red caps, they have serve as priming lips for color to bringing relief to dry chapped puckers.</p>
<p>Now with the rise of skin cancer melanomas, primarily found in and around the mouth, being detected in African American women, it&#8217;s now more important than ever to protect your pout and skin. </p>
<p>Carmex has introduced new and improved lip balms and skin lotions that are formulated with Broad Spectrum SPF 15, to moisturize and protect skin from UVA and UVB rays which age and damage skin prematurely and increase the risk of skin cancer.</p>
<p>One of the newer products, Carmex put 75 years of lipcare expertise into the Carmex Healing Cream, a  rich cream a part of Carmex&#8217;s new lotion line. With a fast-absorbing formula that won’t wipe off on your clothes, immediately helps to heal your most troubled spots—such as feet, elbows and hands. </p>
<p>Another great product is the Carmex® Ultra Smooth Vanilla Lip Balm Stick, an extra gentle water resistant stick that won’t stress chapped or cracked lips, and blends ultra-moisturizing ingredients with a light touch of vanilla flavor.</p>
<p>With new pomegranate and lime twist scents, to add to the original strawberry and cherry &#8220;flavors&#8221; there are now more of range of options to choose from with Carmex when deciding what’s best for you.</p>
<p>Check out <a href=" http://mycarmex.com/works" target="_blank">Carmex&#8217;s</a> website, for more info and pricing details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/beauty/2013/06/new-and-improved-puckers-carmex-summer-essentials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Roll Through: Jay-Z Hosts 40/40 10th Anniversary Celebration!!!</title>
		<link>http://www.juicymagonline.com/celeb/2013/06/roll-through-jay-z-hosts-4040-10th-anniversary-celebration/</link>
		<comments>http://www.juicymagonline.com/celeb/2013/06/roll-through-jay-z-hosts-4040-10th-anniversary-celebration/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 15:45:20 +0000</pubDate>
		<dc:creator>JUICY STAFF</dc:creator>
				<category><![CDATA[Celeb]]></category>
		<category><![CDATA[ADRIENNE BAILON]]></category>
		<category><![CDATA[Alexis Stoudemire]]></category>
		<category><![CDATA[Amar'e Stoudemire]]></category>
		<category><![CDATA[Angie Martinez]]></category>
		<category><![CDATA[Beyonce]]></category>
		<category><![CDATA[geno smith]]></category>
		<category><![CDATA[Jay Z]]></category>
		<category><![CDATA[maxwell]]></category>
		<category><![CDATA[more photos]]></category>
		<category><![CDATA[Robinson Cano]]></category>
		<category><![CDATA[Roc Nations Sports]]></category>
		<category><![CDATA[T.I.]]></category>
		<category><![CDATA[tiny]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=61292</guid>
		<description><![CDATA[Last night, <strong>JAY-Z</strong> hosted a star studded celebration for the 10-year anniversary of his 40/40 nightclub.

Held in the heart of New York City, <strong>ADRIENNE BAILON</strong>, <strong>MAXWELL</strong>, <strong>ANGIE MARTINEZ</strong>, <strong>T.I.</strong>, <strong>TINY</strong>, <strong>MEEK MILL </strong>, <strong>AMARE</strong> and <strong>ALEXIS STOUDEMIRE</strong> were among the A-list party goers.

Roc Nation Sports clients <strong>ROBINSON CANO</strong> and <strong>GENO SMITH</strong> were also in attendance, along with JAY-Z's wife, <strong>BEYONCE</strong> spotted sporting a sexy white dress.

<h6><em>Photo Source: INF and Instagram</em></h6>]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">
 
        var $ = jQuery.noConflict();
        var curImg = get_anchor();

        function prev_img(totalImages){
            if( curImg > 1 ){
                prevImg = curImg - 1;
            }
            else{ 
                prevImg = totalImages;
            }
            refresh(imgData[prevImg][0], imgData[prevImg][1], imgData[prevImg][2], prevImg, totalImages , imgData[prevImg][3]);
        }

        function next_img(totalImgs){

            curImg = parseInt(curImg);

            if(curImg == totalImgs){
            var nextImg = 1;
            }
            else{
            var nextImg = curImg + 1;
            }

            refresh(imgData[nextImg][0], imgData[nextImg][1], imgData[nextImg][2], nextImg, totalImgs, imgData[nextImg][3]);

        }
       
        function track_pageview(args){
            
            /////////////////////////////////////
        	// Track refresh in Google Analytics
        	/////////////////////////////////////
        	
        	var ref = (typeof args.ref == 'undefined') ? "" : args.ref;
        	var url = (typeof args.url == 'undefined') ? "" : args.url;
        	var pageTracker = _gat._getTracker("UA-932072-14");
        	pageTracker._trackPageview(url + ref); 
        }        
        
        function reloadAd(adSize, h_ord, w, h){
            ////////////////////////
            // Method to reload ads
            ////////////////////////
            
        	h_tile+=1;
        	frameId='frame-'+adSize;

        	if(!document.getElementById(frameId)){
        			var adFrame = $("<iframe />")
        			var adSrc   = '/php/ads/ad-tags.php?h_ord='+h_ord+'&size='+adSize+'&section='+section+'&post='+post+'&h_tile='+h_tile;
         			adFrame.attr("src",adSrc);
        			adFrame.attr("scrolling","no");
        			adFrame.attr("width",w);
        			adFrame.attr("height",h);
        			adFrame.attr("frameborder",0)
        			var adDiv = $("#"+adSize);
        			adDiv.empty();
        			adDiv.append(adFrame);
        	}else{
        		document.getElementById(frameId).src = '/php/ads/ad-tags.php?h_ord='+h_ord+'&size='+adSize+'&section='+section+'&post='+post+'&h_tile='+h_tile;
        	}
        return true;
        }
        
        function refresh(imgUrl, imgTitle, imgDescription, index, numImages, largeURL){
            //////////////////////////////////////
            //  Refresh image, ads, and wallpaper
            //////////////////////////////////////
            
            // Change Image, Title, Description
            $('#sg-enlarge').attr("href", largeURL);
            loadImg(imgUrl , '#sg-main-image' );
                if(imgTitle=='' && imgDescription==''){
                    $('#sg-caption').css({'display':'none'});   
                }else{
                    $('#sg-caption').css({'display':'block'});
                    if(imgTitle!=''){
                        $('#sg-image-title').css({'display':'block'});
                        $('#sg-gallery_image').attr("alt", imgTitle);
                        $('#sg-gallery_image').attr("title", imgTitle);
                        $('#sg-image-title').html(imgTitle);
                    }else{
                        $('#sg-image-title').css({'display':'none'});
                    }
            
                    if(imgDescription!=''){
                        $('#sg-image-description').css({'display':'block'});
                        $('#sg-image-description').html(imgDescription);
                    }else{
                        $('#sg-image-description').css({'display':'none'});
                    }
                }
    	
            // refresh ads
            //  CampaignManager.look();
            h_tile=0;
            $(adArray).each(function(index){
                switch(adArray[index].substring(0,1)){
                    case 'l':
                        w = 728;
                        h = 90;
                        break;
                    case 'm':
                        w = 300;
                        h = 250;
                        break;
                    case 's':
                        w = 160;
                        h = 600;
                        break;
                }
                reloadAd(adArray[index], h_ord, w, h);
            })

            track_pageview({url:get_page_url(document.location.pathname)});

            // Change URL
            set_anchor(index);
            prevImg = curImg;
            curImg = index;

            // Image 1 of totalImage
            $('#sg-curImage').html(curImg + ' ');
        }

        function get_page_url(url){
        var page = url+'#'+curImg;
        return page;
        }

        function get_anchor(){
        var re = /#[0-9]+$/; 
        var match = re.exec(document.location.toString());
        hash = 1;
        if (match != null) var hash = match[0].substr(1);
        return hash;
        }
   
        function set_anchor(anchor){
        ////////////////////////
        // Add anchor tag to URL
        ////////////////////////
        
        //remove existing anchors
        var url = document.location.toString();
        var re = /#[0-9]+$/;
        url = url.replace(re, '');
        document.location = url + '#' + anchor;
        }
        
        function loadImg(url, target){
            var page_request = false
            
            h = $(target).height();
            w = $(target).width();
            $(target).empty();
            $(target).css({"width":w,"height":h,"background":"url(/images/juicy2010/juicy-ajax-loader.gif) no-repeat center center"})
            
            var fileref = document.createElement("img");
   
            if (window.XMLHttpRequest){ // if Mozilla, Safari etc
                page_request = new XMLHttpRequest();
     
            }else if (window.ActiveXObject){ // if IE
                try {
                    page_request = new ActiveXObject("Msxml2.XMLHTTP")
                }
                catch (e){
                    try{
                        page_request = new ActiveXObject("Microsoft.XMLHTTP")
                    }
                    catch (e){
                    }
                }
            }else{
                return false;
            }

            page_request.onreadystatechange=function(){
                if (page_request.readyState==4 && page_request.status==200){
                    $(target).empty();
                    fileref.setAttribute("src", url);
                    $(target).append(fileref);
                    $(target).css({"width":"auto","height":"auto","background":"url()"})
                }
            }
			
			
            /*try {
					page_request.open('GET', url, true)
				}
				catch(e)
				{
					page_request.open('GET', url.replace(/web1/,'www'), true)
				};*/
            
			page_request.open('GET', url, true);
			page_request.send(null);
        };
		
        function loadFile(url, filetype, success) {
            done = false;
            var head = document.getElementsByTagName('head')[0];

            if (window.XMLHttpRequest){ // if Mozilla, Safari etc
                page_request = new XMLHttpRequest();
     
            }else if (window.ActiveXObject){ // if IE
                try {
                    page_request = new ActiveXObject("Msxml2.XMLHTTP")
                }
                catch (e){
                    try{
                        page_request = new ActiveXObject("Microsoft.XMLHTTP")
                    }
                    catch (e){
                    }
                }
            }else{
                return false;
            }
            
            page_request.onreadystatechange=function(){
                if (page_request.readyState==4 && page_request.status==200){
      
                    if(filetype=="js"){ //if filename is a external JavaScript file
                        var fileref=document.createElement('script');
                        fileref.setAttribute("type","text/javascript");
                        fileref.setAttribute("src", url);
                    }
                    else if(filetype=="css"){ //if filename is an external CSS file
                        var fileref=document.createElement("link");
                        fileref.setAttribute("rel", "stylesheet")
                        fileref.setAttribute("type", "text/css");
                        fileref.setAttribute("href", url);
                    }
                    head.appendChild(fileref);
                }
            }
			
			/*try
			{
				page_request.open('GET', url, true);
			}
			catch(e)
			{
				page_request.open('GET', url.replace(/web1/,'www'), true);
			}*/
			
			page_request.open('GET', url, true);
			page_request.send(null);
        };
        
        function buildAdArray(){
        	adArray = [];
        	$(".ad-slot").each(function(){
        		adArray.push($(this).attr("id"))
        	})
        }

        function sgGalleryInit(){
            if(typeof imgData != "undefined"){
                
                var totalImgs = $(imgData).size();
                    totalImgs -=1;

                var prevClick = 'prev_img(' + totalImgs + ');return false;';
                var nextClick = 'next_img(' + totalImgs + ');return false';

                var topControls = '';
                topControls += '<span id="sg-image-count"><span id="sg-curImage">' + curImg + ' <\/span>of ' + totalImgs + '<\/span>';
                topControls += '<div id="sg-top-btns">';
                topControls += '<a href='+imgData[curImg][3]+' id="sg-enlarge" target="_blank">ENLARGE</a>';
                topControls += '<a href="#" class="back" onclick="'+ prevClick +'"><span>Previous</span><\/a>';
                topControls += '<a href="#" class="next" onclick="'+ nextClick +'"><span>Next</span><\/a>';
                topControls += '<\/div>'
                $('#sg-top-controls').html(topControls);

                var photoOverlayNav = '';
                photoOverlayNav +='<div id="sg-prev-button" onclick="'+ prevClick +'"><span><\/span><\/div>';
                photoOverlayNav +='<div id="sg-next-button" onclick="'+ nextClick +'"><span><\/span><\/div>';
                $('#sg-image-container').prepend(photoOverlayNav);

                // Display Main Image
                anchor = get_anchor();
                if(anchor){
                    thisImg = imgData[anchor];
                }else{
                    thisImg = imgData[1];
                }

                //Display Photo, Caption, and Description
                $('#sg-main-image').html('<img id="sg-gallery_image" src="' + thisImg[0] + '"' + ' title="'+thisImg[1]+'"'+' alt="' + thisImg[1] + '">');
                
                if(imgData[anchor][1]=='' && imgData[anchor][2]==''){
                    $('#sg-caption').css({'display':'none'});   
                }else{
                    if(imgData[anchor][1]!=''){
                        $('#sg-image-title').html(imgData[anchor][1]);  
                    }else{
                        $('#sg-image-title').css({'display':'none'});
                    }
            
                    if(imgData[anchor][2]!=''){
                        $('#sg-image-description').html(imgData[anchor][2]);
                    }else{
                        $('#sg-image-description').css({'display':'none'});
                    }
                }
                
                //$('#sg-image-title').html(imgData[anchor][1]);
                //$('#sg-image-description').html(imgData[anchor][2]);

                if(typeof thumbData != "undefined"){
                    for(var x in thumbData ){
                        $('#sg-thumbnails').append('<a style="cursor:pointer;" onClick="refresh(imgData['+x+'][0], imgData['+x+'][1], imgData['+x+'][2], '+x+', '+ totalImgs +', imgData['+x+'][3]);"><img id="thumb-'+ x +'" src="' + thumbData[x] + '"><\/a>');
                    }
                }
                
                buildAdArray();
            }
        }
  
        $(function(){
            
                        
                        	    loadFile("http://www.juicymagonline.com/wp-content/plugins/superGiant-gallery/css/sG-gallery-styles.css", "css", sgGalleryInit() ); // dynamically load and add this .css file    			
   
    		
        }); // Closes jQuery Function
                
</script>
<script>var imgData = new Array();imgData[1]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/0012_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/0012_4040.jpg');
imgData[2]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/0011_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/0011_4040.jpg');
imgData[3]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/0010_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/0010_4040.jpg');
imgData[4]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/009_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/009_4040.jpg');
imgData[5]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/008_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/008_4040.jpg');
imgData[6]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/007_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/007_4040.jpg');
imgData[7]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/006_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/006_4040.jpg');
imgData[8]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/005_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/005_4040.jpg');
imgData[9]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/004_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/004_4040.jpg');
imgData[10]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/003_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/003_4040.jpg');
imgData[11]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/002_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/002_4040.jpg');
imgData[12]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/001_4040.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/001_4040.jpg');
</script><div id='sg-gallery' ><div id='sg-top-controls'></div><div id='sg-image-container'><div id='sg-main-image'></div></div><div id='sg-caption'><div id='sg-image-title'></div><div id='sg-image-description'></div></div></div>
<p>Last night, <strong>JAY-Z</strong> hosted a star studded celebration for the 10-year anniversary of his 40/40 nightclub.</p>
<p>Held in the heart of New York City, <strong>ADRIENNE BAILON</strong>, <strong>MAXWELL</strong>, <strong>ANGIE MARTINEZ</strong>, <strong>T.I.</strong>, <strong>TINY</strong>, <strong>MEEK MILL </strong>, <strong>AMARE</strong> and <strong>ALEXIS STOUDEMIRE</strong> were among the A-list party goers.</p>
<p>Roc Nation Sports clients <strong>ROBINSON CANO</strong> and <strong>GENO SMITH</strong> were also in attendance, along with JAY-Z&#8217;s wife, <strong>BEYONCE</strong> spotted sporting a sexy white dress.</p>
<h6><em>Photo Source: INF and Instagram</em></h6>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/celeb/2013/06/roll-through-jay-z-hosts-4040-10th-anniversary-celebration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Scott Disick Stars In &#8216;Yeezus&#8217; Promo Short Film!!!</title>
		<link>http://www.juicymagonline.com/celeb/2013/06/video-scott-disick-stars-in-yeezus-promo-short-film/</link>
		<comments>http://www.juicymagonline.com/celeb/2013/06/video-scott-disick-stars-in-yeezus-promo-short-film/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 15:24:40 +0000</pubDate>
		<dc:creator>JUICY STAFF</dc:creator>
				<category><![CDATA[Celeb]]></category>
		<category><![CDATA[American Psycho]]></category>
		<category><![CDATA[Johnathan Cheban]]></category>
		<category><![CDATA[Kanye West]]></category>
		<category><![CDATA[kim kardashian]]></category>
		<category><![CDATA[scott disick]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Yeezus]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=61311</guid>
		<description><![CDATA[<strong>KANYE WEST</strong> is keeping it all in the <strong>KARDASHIAN</strong> clan with debut of the <em>American Psycho</em> inspired promo for his new album <em>Yeesuz.</em>

Starring his girlfriend, <strong>KIM KARDASHIAN'</strong>s, bestie <strong>JONATHAN CHEBAN</strong>, and KARDASHIAN's older sister's boyfriend/baby daddy, <strong>SCOTT DISICK</strong>, the short film shows what happens when an over obsessed KANYE WEST fan goes too far.

WEST's album <em> Yeezus</em> hit stores today, June 18th...]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/RVaQobeE-04" frameborder="0" width="570" height="290"></iframe></p>
<p><strong>KANYE WEST</strong> is keeping it all in the <strong>KARDASHIAN</strong> family with debut of the <em>American Psycho</em> inspired promo for his new album <em>Yeesuz.</em></p>
<p>Starring his girlfriend, <strong>KIM KARDASHIAN&#8217;</strong>s, bestie <strong>JONATHAN CHEBAN</strong>, and KARDASHIAN&#8217;s older sister&#8217;s boyfriend/baby daddy, <strong>SCOTT DISICK</strong>, the short film shows what happens when an over obsessed KANYE WEST fan goes too far.</p>
<p>WEST&#8217;s album <em> Yeezus</em> hit stores today, June 18th.</p>
<p>Check out the promotional video for <em>Yeezus</em> above.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/celeb/2013/06/video-scott-disick-stars-in-yeezus-promo-short-film/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dave Chappelle To Headline Upcoming Funny or Die Comedy Festival!!!</title>
		<link>http://www.juicymagonline.com/celeb/2013/06/dave-chappelle-to-headline-upcoming-funny-or-die-comedy-festival/</link>
		<comments>http://www.juicymagonline.com/celeb/2013/06/dave-chappelle-to-headline-upcoming-funny-or-die-comedy-festival/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 15:14:35 +0000</pubDate>
		<dc:creator>JUICY STAFF</dc:creator>
				<category><![CDATA[Celeb]]></category>
		<category><![CDATA[comedy]]></category>
		<category><![CDATA[Dave Chappelle]]></category>
		<category><![CDATA[festival]]></category>
		<category><![CDATA[The Oddball Comedy & Curiosity Festival]]></category>
		<category><![CDATA[tour]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=61289</guid>
		<description><![CDATA[Comedian DAVE CHAPPELLE is back, and preparing to co-headline Funny or Die&#8217;s The Oddball Comedy &#38; Curiosity festival. After laying low and appearing at a handful of performances since the end of his hit Chappelle&#8217;s Show, the comedian will star in the five weekend tour that kicks off later this summer. According to Funny Or &#187;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.juicymagonline.com/wp-content/uploads/2013/06/davechappelle.jpg"><img src="http://www.juicymagonline.com/wp-content/uploads/2013/06/davechappelle.jpg" alt="" title="davechappelle" width="300" height="450" class="alignleft size-full wp-image-61307" /></a>Comedian <strong>DAVE CHAPPELLE</strong> is back, and preparing to co-headline Funny or Die&#8217;s The Oddball Comedy &amp; Curiosity festival.</p>
<p>After laying low and appearing at a handful of performances since the end of his hit <em>Chappelle&#8217;s Show</em>, the comedian will star in the five weekend tour that kicks off later this summer.</p>
<p>According to <em><a href="http://www.funnyordie.com/oddball">Funny Or Die</a></em>, the fun-filled festival will feature street performers, venders, psychics and freak and hit thirteen cities across the US.</p>
<p>Tickets for The Oddball Comedy &amp; Curiosity Festival go on sale June 21st.</p>
<h6><em>Photo Source: PR Photos</em></h6>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/celeb/2013/06/dave-chappelle-to-headline-upcoming-funny-or-die-comedy-festival/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music Video: Chris Brown Ft. Aaliyah &#8216;Don&#8217;t Think They Know&#8217;!!!</title>
		<link>http://www.juicymagonline.com/celeb/2013/06/music-video-chris-brown-ft-aaliyah-dont-think-they-know/</link>
		<comments>http://www.juicymagonline.com/celeb/2013/06/music-video-chris-brown-ft-aaliyah-dont-think-they-know/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 13:59:57 +0000</pubDate>
		<dc:creator>JUICY STAFF</dc:creator>
				<category><![CDATA[Celeb]]></category>
		<category><![CDATA[aaliyah]]></category>
		<category><![CDATA[chris brown]]></category>
		<category><![CDATA[Don't Think They Know]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[X]]></category>
		<category><![CDATA[X album]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=61275</guid>
		<description><![CDATA[CHRIS BROWN recently premiered the video for his new single, &#8220;Don&#8217;t Think They Know,&#8221; featuring vocals and visuals from deceased R&#38;B songstress AALIYAH. &#8220;Don&#8217;t Think They Know,&#8221; follows BROWN as he addressess LA&#8217;s gang and gun violence issues. Scheduled to appear on CHRIS BROWN&#8217;s X album, set to hit stores July 16th, &#8220;Don&#8217;t Think They &#187;]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/68514233" frameborder="0" width="570" height="290"></iframe><br />
<strong></strong></p>
<p><strong>CHRIS BROWN</strong> recently premiered the video for his new single, &#8220;Don&#8217;t Think They Know,&#8221; featuring vocals and visuals from deceased R&amp;B songstress <strong>AALIYAH</strong>. &#8220;Don&#8217;t Think They Know,&#8221; follows BROWN as he addressess LA&#8217;s gang and gun violence issues.</p>
<p>Scheduled to appear on CHRIS BROWN&#8217;s <em>X</em> album, set to hit stores July 16th, &#8220;Don&#8217;t Think They Know&#8221; can be seen above.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/celeb/2013/06/music-video-chris-brown-ft-aaliyah-dont-think-they-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chad Johnson Set to Be Released From Prison!!!</title>
		<link>http://www.juicymagonline.com/celeb/2013/06/chad-johnson-set-to-be-released-from-prison/</link>
		<comments>http://www.juicymagonline.com/celeb/2013/06/chad-johnson-set-to-be-released-from-prison/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 13:49:36 +0000</pubDate>
		<dc:creator>JUICY STAFF</dc:creator>
				<category><![CDATA[Celeb]]></category>
		<category><![CDATA[chad johnson]]></category>
		<category><![CDATA[evelyn lozada]]></category>
		<category><![CDATA[jail]]></category>
		<category><![CDATA[Judge McHugh]]></category>
		<category><![CDATA[released from prison]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=61279</guid>
		<description><![CDATA[One week after being thrown in prison, CHAD JOHNSON is scheduled to be released later today. According to reports, JOHNSON appeared in front of Judge McHugh (the judge who sentenced JOHNSON to 30-days in jail for slapping his attorney&#8217;s butt) to notified that he would be released. While JOHNSON ended up doing only a light &#187;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.juicymagonline.com/celeb/2013/06/chad-johnson-set-to-be-released-from-prison/attachment/chadjohnson-5/" rel="attachment wp-att-61281"><img class="alignnone size-full wp-image-61281" title="chadjohnson" src="http://www.juicymagonline.com/wp-content/uploads/2013/06/chadjohnson1.jpg" alt="" width="300" height="420" /></a>One week after being thrown in prison, <strong>CHAD JOHNSON</strong> is scheduled to be released later today.</p>
<p>According to <a href="http://www.tmz.com/2013/06/17/chad-johnson-released-jail-florida/#ixzz2WZY12Nar"><em>reports</em></a>, JOHNSON appeared in front of <strong>Judge McHugh</strong> (the judge who sentenced JOHNSON to 30-days in jail for slapping his attorney&#8217;s butt) to notified that he would be released.</p>
<p>While JOHNSON ended up doing only a light bid in prison, the troubled NFL star was reprimanded for his disrespectful courtroom behavior and blasted for his 2012 domestic dispute with ex-wife <strong>EVELYN LOZADA</strong>.</p>
<p>As a result of his antics, JOHNSON&#8217;s probation has been extended to October 16th, versus his original September end date.</p>
<h6>Photo Source: PR Photos</h6>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/celeb/2013/06/chad-johnson-set-to-be-released-from-prison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Music: Reginae Carter &#8216;Daddy&#8217;s Little Girl&#8217;!!!</title>
		<link>http://www.juicymagonline.com/celeb/2013/06/new-music-reginae-carter-daddys-little-girl/</link>
		<comments>http://www.juicymagonline.com/celeb/2013/06/new-music-reginae-carter-daddys-little-girl/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 13:31:47 +0000</pubDate>
		<dc:creator>JUICY STAFF</dc:creator>
				<category><![CDATA[Celeb]]></category>
		<category><![CDATA[daddy's little girl]]></category>
		<category><![CDATA[lil wayne]]></category>
		<category><![CDATA[Lil Wayne Daughter]]></category>
		<category><![CDATA[OMG Girlz]]></category>
		<category><![CDATA[Reginae Carter]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=61206</guid>
		<description><![CDATA[REGINAE CARTER recently premiered her debut single, &#8220;Daddy&#8217;s Little Girl.&#8221; CARTER&#8217;s new single, explains the special relationship the aspiring songstress shares with her father, rapper LIL WAYNE. No stranger to the music industry, the 14-year-old served as a member of the up-and-coming girl group,OMG GIRLZ, and now has released a new single, explaining the special relationship &#187;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.juicymagonline.com/wp-content/uploads/2013/06/reginae.jpg"><img class="alignleft size-full wp-image-61235" title="reginae" src="http://www.juicymagonline.com/wp-content/uploads/2013/06/reginae.jpg" alt="" width="300" height="420" /></a><strong>REGINAE CARTER</strong> recently premiered her debut single, &#8220;Daddy&#8217;s Little Girl.&#8221;</p>
<p>CARTER&#8217;s new single, explains the special relationship the aspiring songstress shares with her father, rapper <strong>LIL WAYNE</strong>.</p>
<p>No stranger to the music industry, the 14-year-old served as a member of the up-and-coming girl group,<strong>OMG GIRLZ</strong>, and now has released a new single, explaining the special relationship the aspiring songstress shares with her father, rapper <strong>LIL WAYNE</strong>.</p>
<p>Released right before Father&#8217;s Day, check out REGINAE CARTER&#8217;s new single, &#8220;Daddy&#8217;s Little Girl,&#8221; below:<iframe src="https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F96899326&amp;color=ff004a&amp;auto_play=false&amp;show_artwork=true" frameborder="no" scrolling="no" width="100%" height="166"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/celeb/2013/06/new-music-reginae-carter-daddys-little-girl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Juicy Webstar: Undetectable Closure Method!!!</title>
		<link>http://www.juicymagonline.com/hair/2013/06/juicy-webstar-undetectable-closure-method/</link>
		<comments>http://www.juicymagonline.com/hair/2013/06/juicy-webstar-undetectable-closure-method/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 12:42:42 +0000</pubDate>
		<dc:creator>Jasmine Washington</dc:creator>
				<category><![CDATA[Hair]]></category>
		<category><![CDATA[Hair Web Star]]></category>
		<category><![CDATA[closure]]></category>
		<category><![CDATA[how to apply closure]]></category>
		<category><![CDATA[lace front]]></category>
		<category><![CDATA[lace wig]]></category>
		<category><![CDATA[teasedblackpearlz]]></category>
		<category><![CDATA[Tiarra Monet]]></category>
		<category><![CDATA[undetectable closure method]]></category>
		<category><![CDATA[Weave]]></category>
		<category><![CDATA[wig]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=60370</guid>
		<description><![CDATA[Name: Tiarra Monet YouTube Channel: Tiarra Monet Facebook: Tiarra Monet Instagram: TiarraMonet Why We Love This: Lace closures have gotten a bad rep for leaving so many Juicy ladies with unrealistic and oftentimes tacky looking wigs and weaves. Juicy ladies who want an authentic and detailed tutorial on how to properly secure an undetectable closure &#187;]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.juicymagonline.com/hair/2013/06/juicy-webstar-undetectable-closure-method/attachment/tiarramonet-2/" rel="attachment wp-att-60394"><img class="alignleft size-full wp-image-60394" title="tiarramonet" src="http://www.juicymagonline.com/wp-content/uploads/2013/06/tiarramonet.jpg" alt="" width="300" height="420" /></a>Name</strong>: Tiarra Monet</p>
<p><strong>YouTube Channel</strong>: <a href="http://www.youtube.com/user/teasedblackpearlz?feature=watch">Tiarra Monet</a></p>
<p><strong>Facebook</strong>: <a href="https://www.facebook.com/pages/Tiarra-Monet/136606876395643">Tiarra Monet </a></p>
<p><strong>Instagram</strong>: <a href="http://instagram.com/tiarramonet#">TiarraMonet</a></p>
<p><strong>Why We Love This</strong>: Lace closures have gotten a bad rep for leaving so many <strong><em>Juicy</em></strong> ladies with unrealistic and oftentimes tacky looking wigs and weaves.</p>
<p><em><strong>Juicy</strong></em> ladies who want an authentic and detailed tutorial on how to properly secure an undetectable closure are in luck. <strong>Tiarra Monet</strong> delivers an innovative closure method that keeps lace closures from appearing fake and wig-like while protecting highly coveted edges from breakage. </p>
<p><strong><em>Juicy</em></strong> ladies who can&#8217;t get enough of wigs and weaves will be pleased with new way to keep hair laid.</p>
<p><iframe src="http://www.youtube.com/embed/lV4ggwc8yBU?list=UUjFDXe5L3bN6algB_YyTPyg" frameborder="0" width="570" height="270"></iframe></p>
<h6><em>Photo Source: PR Photos</em></h6>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/hair/2013/06/juicy-webstar-undetectable-closure-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photos: Kim Kardashian &amp; Kanye West Welcome A Baby Girl!!!</title>
		<link>http://www.juicymagonline.com/celeb/2013/06/photos-kim-kardashian-kanye-west-welcome-a-baby-girl/</link>
		<comments>http://www.juicymagonline.com/celeb/2013/06/photos-kim-kardashian-kanye-west-welcome-a-baby-girl/#comments</comments>
		<pubDate>Mon, 17 Jun 2013 17:30:43 +0000</pubDate>
		<dc:creator>JUICY STAFF</dc:creator>
				<category><![CDATA[Celeb]]></category>
		<category><![CDATA[Kanye West]]></category>
		<category><![CDATA[kanye West daughter]]></category>
		<category><![CDATA[kim kardashian]]></category>
		<category><![CDATA[kim kardashian daughter]]></category>
		<category><![CDATA[Kim Kardashian Delivers Baby]]></category>
		<category><![CDATA[KIMYE BABY]]></category>

		<guid isPermaLink="false">http://www.juicymagonline.com/?p=60996</guid>
		<description><![CDATA[KANYE WEST</strong> received the ultimate Father's Day present when his girlfriend <strong>KIM KARDASHIAN</strong> delivered their baby girl this weekend.

According to <a href="http://www.tmz.com/2013/06/15/kim-kardashian-gives-birth-baby-girl/?adid=hero1">TMZ</a>, KARDASHIAN began experiencing contractions late Friday night and went in to full labor early Saturday morning.

WEST cancelled his LA album release party to be there to welcome his first child into the world.

KARDASHIAN, who delivered five weeks before her scheduled due date, is said to be in good health, congrats to the new parents.]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">
 
        var $ = jQuery.noConflict();
        var curImg = get_anchor();

        function prev_img(totalImages){
            if( curImg > 1 ){
                prevImg = curImg - 1;
            }
            else{ 
                prevImg = totalImages;
            }
            refresh(imgData[prevImg][0], imgData[prevImg][1], imgData[prevImg][2], prevImg, totalImages , imgData[prevImg][3]);
        }

        function next_img(totalImgs){

            curImg = parseInt(curImg);

            if(curImg == totalImgs){
            var nextImg = 1;
            }
            else{
            var nextImg = curImg + 1;
            }

            refresh(imgData[nextImg][0], imgData[nextImg][1], imgData[nextImg][2], nextImg, totalImgs, imgData[nextImg][3]);

        }
       
        function track_pageview(args){
            
            /////////////////////////////////////
        	// Track refresh in Google Analytics
        	/////////////////////////////////////
        	
        	var ref = (typeof args.ref == 'undefined') ? "" : args.ref;
        	var url = (typeof args.url == 'undefined') ? "" : args.url;
        	var pageTracker = _gat._getTracker("UA-932072-14");
        	pageTracker._trackPageview(url + ref); 
        }        
        
        function reloadAd(adSize, h_ord, w, h){
            ////////////////////////
            // Method to reload ads
            ////////////////////////
            
        	h_tile+=1;
        	frameId='frame-'+adSize;

        	if(!document.getElementById(frameId)){
        			var adFrame = $("<iframe />")
        			var adSrc   = '/php/ads/ad-tags.php?h_ord='+h_ord+'&size='+adSize+'&section='+section+'&post='+post+'&h_tile='+h_tile;
         			adFrame.attr("src",adSrc);
        			adFrame.attr("scrolling","no");
        			adFrame.attr("width",w);
        			adFrame.attr("height",h);
        			adFrame.attr("frameborder",0)
        			var adDiv = $("#"+adSize);
        			adDiv.empty();
        			adDiv.append(adFrame);
        	}else{
        		document.getElementById(frameId).src = '/php/ads/ad-tags.php?h_ord='+h_ord+'&size='+adSize+'&section='+section+'&post='+post+'&h_tile='+h_tile;
        	}
        return true;
        }
        
        function refresh(imgUrl, imgTitle, imgDescription, index, numImages, largeURL){
            //////////////////////////////////////
            //  Refresh image, ads, and wallpaper
            //////////////////////////////////////
            
            // Change Image, Title, Description
            $('#sg-enlarge').attr("href", largeURL);
            loadImg(imgUrl , '#sg-main-image' );
                if(imgTitle=='' && imgDescription==''){
                    $('#sg-caption').css({'display':'none'});   
                }else{
                    $('#sg-caption').css({'display':'block'});
                    if(imgTitle!=''){
                        $('#sg-image-title').css({'display':'block'});
                        $('#sg-gallery_image').attr("alt", imgTitle);
                        $('#sg-gallery_image').attr("title", imgTitle);
                        $('#sg-image-title').html(imgTitle);
                    }else{
                        $('#sg-image-title').css({'display':'none'});
                    }
            
                    if(imgDescription!=''){
                        $('#sg-image-description').css({'display':'block'});
                        $('#sg-image-description').html(imgDescription);
                    }else{
                        $('#sg-image-description').css({'display':'none'});
                    }
                }
    	
            // refresh ads
            //  CampaignManager.look();
            h_tile=0;
            $(adArray).each(function(index){
                switch(adArray[index].substring(0,1)){
                    case 'l':
                        w = 728;
                        h = 90;
                        break;
                    case 'm':
                        w = 300;
                        h = 250;
                        break;
                    case 's':
                        w = 160;
                        h = 600;
                        break;
                }
                reloadAd(adArray[index], h_ord, w, h);
            })

            track_pageview({url:get_page_url(document.location.pathname)});

            // Change URL
            set_anchor(index);
            prevImg = curImg;
            curImg = index;

            // Image 1 of totalImage
            $('#sg-curImage').html(curImg + ' ');
        }

        function get_page_url(url){
        var page = url+'#'+curImg;
        return page;
        }

        function get_anchor(){
        var re = /#[0-9]+$/; 
        var match = re.exec(document.location.toString());
        hash = 1;
        if (match != null) var hash = match[0].substr(1);
        return hash;
        }
   
        function set_anchor(anchor){
        ////////////////////////
        // Add anchor tag to URL
        ////////////////////////
        
        //remove existing anchors
        var url = document.location.toString();
        var re = /#[0-9]+$/;
        url = url.replace(re, '');
        document.location = url + '#' + anchor;
        }
        
        function loadImg(url, target){
            var page_request = false
            
            h = $(target).height();
            w = $(target).width();
            $(target).empty();
            $(target).css({"width":w,"height":h,"background":"url(/images/juicy2010/juicy-ajax-loader.gif) no-repeat center center"})
            
            var fileref = document.createElement("img");
   
            if (window.XMLHttpRequest){ // if Mozilla, Safari etc
                page_request = new XMLHttpRequest();
     
            }else if (window.ActiveXObject){ // if IE
                try {
                    page_request = new ActiveXObject("Msxml2.XMLHTTP")
                }
                catch (e){
                    try{
                        page_request = new ActiveXObject("Microsoft.XMLHTTP")
                    }
                    catch (e){
                    }
                }
            }else{
                return false;
            }

            page_request.onreadystatechange=function(){
                if (page_request.readyState==4 && page_request.status==200){
                    $(target).empty();
                    fileref.setAttribute("src", url);
                    $(target).append(fileref);
                    $(target).css({"width":"auto","height":"auto","background":"url()"})
                }
            }
			
			
            /*try {
					page_request.open('GET', url, true)
				}
				catch(e)
				{
					page_request.open('GET', url.replace(/web1/,'www'), true)
				};*/
            
			page_request.open('GET', url, true);
			page_request.send(null);
        };
		
        function loadFile(url, filetype, success) {
            done = false;
            var head = document.getElementsByTagName('head')[0];

            if (window.XMLHttpRequest){ // if Mozilla, Safari etc
                page_request = new XMLHttpRequest();
     
            }else if (window.ActiveXObject){ // if IE
                try {
                    page_request = new ActiveXObject("Msxml2.XMLHTTP")
                }
                catch (e){
                    try{
                        page_request = new ActiveXObject("Microsoft.XMLHTTP")
                    }
                    catch (e){
                    }
                }
            }else{
                return false;
            }
            
            page_request.onreadystatechange=function(){
                if (page_request.readyState==4 && page_request.status==200){
      
                    if(filetype=="js"){ //if filename is a external JavaScript file
                        var fileref=document.createElement('script');
                        fileref.setAttribute("type","text/javascript");
                        fileref.setAttribute("src", url);
                    }
                    else if(filetype=="css"){ //if filename is an external CSS file
                        var fileref=document.createElement("link");
                        fileref.setAttribute("rel", "stylesheet")
                        fileref.setAttribute("type", "text/css");
                        fileref.setAttribute("href", url);
                    }
                    head.appendChild(fileref);
                }
            }
			
			/*try
			{
				page_request.open('GET', url, true);
			}
			catch(e)
			{
				page_request.open('GET', url.replace(/web1/,'www'), true);
			}*/
			
			page_request.open('GET', url, true);
			page_request.send(null);
        };
        
        function buildAdArray(){
        	adArray = [];
        	$(".ad-slot").each(function(){
        		adArray.push($(this).attr("id"))
        	})
        }

        function sgGalleryInit(){
            if(typeof imgData != "undefined"){
                
                var totalImgs = $(imgData).size();
                    totalImgs -=1;

                var prevClick = 'prev_img(' + totalImgs + ');return false;';
                var nextClick = 'next_img(' + totalImgs + ');return false';

                var topControls = '';
                topControls += '<span id="sg-image-count"><span id="sg-curImage">' + curImg + ' <\/span>of ' + totalImgs + '<\/span>';
                topControls += '<div id="sg-top-btns">';
                topControls += '<a href='+imgData[curImg][3]+' id="sg-enlarge" target="_blank">ENLARGE</a>';
                topControls += '<a href="#" class="back" onclick="'+ prevClick +'"><span>Previous</span><\/a>';
                topControls += '<a href="#" class="next" onclick="'+ nextClick +'"><span>Next</span><\/a>';
                topControls += '<\/div>'
                $('#sg-top-controls').html(topControls);

                var photoOverlayNav = '';
                photoOverlayNav +='<div id="sg-prev-button" onclick="'+ prevClick +'"><span><\/span><\/div>';
                photoOverlayNav +='<div id="sg-next-button" onclick="'+ nextClick +'"><span><\/span><\/div>';
                $('#sg-image-container').prepend(photoOverlayNav);

                // Display Main Image
                anchor = get_anchor();
                if(anchor){
                    thisImg = imgData[anchor];
                }else{
                    thisImg = imgData[1];
                }

                //Display Photo, Caption, and Description
                $('#sg-main-image').html('<img id="sg-gallery_image" src="' + thisImg[0] + '"' + ' title="'+thisImg[1]+'"'+' alt="' + thisImg[1] + '">');
                
                if(imgData[anchor][1]=='' && imgData[anchor][2]==''){
                    $('#sg-caption').css({'display':'none'});   
                }else{
                    if(imgData[anchor][1]!=''){
                        $('#sg-image-title').html(imgData[anchor][1]);  
                    }else{
                        $('#sg-image-title').css({'display':'none'});
                    }
            
                    if(imgData[anchor][2]!=''){
                        $('#sg-image-description').html(imgData[anchor][2]);
                    }else{
                        $('#sg-image-description').css({'display':'none'});
                    }
                }
                
                //$('#sg-image-title').html(imgData[anchor][1]);
                //$('#sg-image-description').html(imgData[anchor][2]);

                if(typeof thumbData != "undefined"){
                    for(var x in thumbData ){
                        $('#sg-thumbnails').append('<a style="cursor:pointer;" onClick="refresh(imgData['+x+'][0], imgData['+x+'][1], imgData['+x+'][2], '+x+', '+ totalImgs +', imgData['+x+'][3]);"><img id="thumb-'+ x +'" src="' + thumbData[x] + '"><\/a>');
                    }
                }
                
                buildAdArray();
            }
        }
  
        $(function(){
            
                        
                        	    loadFile("http://www.juicymagonline.com/wp-content/plugins/superGiant-gallery/css/sG-gallery-styles.css", "css", sgGalleryInit() ); // dynamically load and add this .css file    			
   
    		
        }); // Closes jQuery Function
                
</script>
<p><strong><a href="http://www.juicymagonline.com/wp-content/uploads/2013/06/kimyebaby1.jpg"><img class="alignleft size-full wp-image-61226" title="kimyebaby" src="http://www.juicymagonline.com/wp-content/uploads/2013/06/kimyebaby1.jpg" alt="" width="300" height="420" /></a>KANYE WEST</strong> received the ultimate Father&#8217;s Day present when his girlfriend <strong>KIM KARDASHIAN</strong> delivered their baby girl this weekend.</p>
<p>According to <a href="http://www.tmz.com/2013/06/15/kim-kardashian-gives-birth-baby-girl/?adid=hero1">TMZ</a>, KARDASHIAN began experiencing contractions late Friday night and went in to full labor early Saturday morning.</p>
<p>WEST cancelled his LA album release party to be there to welcome his first child into the world.</p>
<p>KARDASHIAN, who delivered five weeks before her scheduled due date, is said to be in good health, congrats to the new parents.</p>
<p>Check out our gallery below to revisit a few of KIM&#8217;s past pregnancy looks:</p>
<p style="text-align: center;"><script>var imgData = new Array();imgData[1]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/kimyebaby1.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/kimyebaby1.jpg');
imgData[2]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/001kardashian.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/001kardashian.jpg');
imgData[3]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/002kardashian.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/002kardashian.jpg');
imgData[4]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/003kardashian.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/003kardashian.jpg');
imgData[5]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/004kardashian.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/004kardashian.jpg');
imgData[6]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/005kardashian.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/005kardashian.jpg');
imgData[7]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/006kardashian.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/006kardashian.jpg');
imgData[8]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/007kardashian.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/007kardashian.jpg');
imgData[9]= new Array('http://www.juicymagonline.com/wp-content/uploads/2013/06/008kardashian.jpg','','','http://www.juicymagonline.com/wp-content/uploads/2013/06/008kardashian.jpg');
</script><div id='sg-gallery' class="sg-wide"><div id='sg-top-controls'></div><div id='sg-image-container'><div id='sg-main-image'></div></div><div id='sg-caption'><div id='sg-image-title'></div><div id='sg-image-description'></div></div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.juicymagonline.com/celeb/2013/06/photos-kim-kardashian-kanye-west-welcome-a-baby-girl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.juicymagonline.com/feed/ ) in 0.34751 seconds, on Jun 19th, 2013 at 1:03 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Jun 19th, 2013 at 2:03 pm UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  www.juicymagonline.com/feed/ ) in 0.00041 seconds, on Jun 19th, 2013 at 1:45 pm UTC. -->