// JavaScript Document




$(document).ready(function(){
	$('#rotateimage').cycle({
		fx:     'fade',
		speed:  1000,
		timeout: 3000
	});
});



$(document).ready(function(){
	


	$('.designcode strong').wrapInner('<a href="#"></a>').click(function(){return false;}).hover(function(e){
		$('body').append('<img class="shownimage" style="display:none;position:absolute;border:12px solid white;left:'+(e.pageX-250)+'px;top:'+(e.pageY-50)+'px;z-index:999;" src="/skin1/proflex/'+$(this).attr("class").toLowerCase()+'.jpg" />');
		$('img.shownimage').stop().fadeIn(500);
	},function(){
		$('img.shownimage').stop().fadeOut(500,function(){
			$(this).remove();
		});
	}).mousemove(function(e){
		$('img.shownimage').css("left",(e.pageX-250)+'px').css("top",(e.pageY-50)+'px');
	});







});
