//no conflict jquery
jQuery.noConflict();
//jquery stuff
(function($) {
$(document).ready(function(){
	//change this to set the link where you want the user sent;
	var check_it_link="http://www.converg.com";
	//change this to set the image link;  THIS MAY NEED TO BE ON CLIENTS ROOT
        var image_link="http://www.kansascityconcrete.com/images/leadgen-image-tp.png";
	//change this to set the slide in/out speed; value is in milliseconds;
	var slide_in_speed=2000;
	
	if(!$.cookie("leadgen_show"))
		{			
			$("#main_link").click(function(){
				document.location=check_it_link;
			});
			
			$("#secondary_link").click(function(){
				$("#slide_in").animate({left:"-450px"},slide_in_speed)
			});
			
			$("#slide_in_image img").attr("src",image_link);
			
			$("#slide_in").animate({left:"0"},slide_in_speed)
                        $.cookie("leadgen_show", "true",{ expires: 1 });
			
		}
});

})(jQuery);

