// JavaScript Document
var $blog = jQuery.noConflict();
$blog(function(){ 
	$blog(document).ready(function() {
			//move he last list item before the first item. The purpose of this is if the user clicks to slide left he will be able to see the last item.

			$blog('.blogueItem').mouseenter(function()
			{ 
				//var temp ="#"+this.id
				//$blog(this).css({'background-color':'#e7e7e7'})
				$blog(this).find('a').css({'color':'#AA0F3B'}); 
				

			});
			
			$blog('.blogueItem').mouseleave(function() {
			  //	$blog(this).css({'background-color':'#ffffff'})
				$blog(this).find('a').css({'color':'#636363'}); 
			}); 
			
			
			$blog('.blogueItem').click(function()
			{ 
				window.location = $blog(this).find('a').attr('href'); 
			});
			
			

	  });
    });
	
var $lienR = jQuery.noConflict();
$lienR(function(){ 
	$lienR(document).ready(function() {
			//move he last list item before the first item. The purpose of this is if the user clicks to slide left he will be able to see the last item.

			$lienR('.themeList').mouseenter(function()
			{ 
				//var temp ="#"+this.id
				$lienR(this).find('a').css({'color':'#AA0F3B'}); 
				

			});
			
			$lienR('.themeList').mouseleave(function() {
			  	$lienR(this).find('a').css({'color':'#636363'}); 
			}); 
			
			
			$lienR('.themeList').click(function()
			{ 
				window.location = $lienR(this).find('a').attr('href'); 
			});
			
			

	  });
    });	
	
var $toHighlight = jQuery.noConflict();
$toHighlight(function(){ 
	$toHighlight(document).ready(function() {
			//move he last list item before the first item. The purpose of this is if the user clicks to slide left he will be able to see the last item.

			$toHighlight('.highlightMe').mouseenter(function()
			{ 
				//var temp ="#"+this.id
				$toHighlight(this).find('a').css({'color':'#AA0F3B'});
				$toHighlight(this).css({'cursor':'hand'}); 
				$toHighlight(this).css({'cursor':'pointer'}); 
				

			});
			
			$toHighlight('.highlightMe').mouseleave(function() {
			  	$toHighlight(this).find('a').css({'color':'#636363'}); 
			}); 
			
			
			$toHighlight('.highlightMe').click(function()
			{ 
				window.location = $toHighlight(this).find('a').attr('href'); 
			});
			
			

	  });
    });	
