/*@cc_on 
var doc = document;
eval('var document = doc');
@*/

$(function() {
            $("#1, #2, #3").lavaLamp({
                fx: "backout",
                speed: 1000,
                click: function(event, menuItem) {

                }
            });
			function animations(){
				

				$("#raft").animate({top:"-=5px"},1000).animate({top:"+=5px"}, 1000);
				$("#raft2").animate({top:"-=5px"},1000).animate({top:"+=5px"}, 1000);
				$("#raft3").animate({top:"-=5px"},1000).animate({top:"+=5px"}, 1000);
        	}; 
 
 
    		setInterval(animations,2000);

			$("#concept_menu a").click(function(event){
				event.preventDefault();
				var concept_flag = $(this).attr("id");
				$("#concept_menu a").removeClass();
				$(this).addClass("select");
				
				if(concept_flag == 'brand_c'){
					

					$("#concept_roller").animate({opacity:0},1000,function(){
																		$(">*",this).remove();
																		$(this).append("<img src=\"./img/pc/ex_concept_b.jpg\" />");
																	}).animate({opacity:1},"slow",function(){});
					
					$("#brand_c_p").html("<img src=\"./img/pc/point_on.gif\" />");
					$("#season_c_p").html("<img src=\"./img/pc/point_off.gif\" />");
				}else if(concept_flag == 'season_c'){
					$("#concept_roller").animate({opacity:0},1000,function(){
																		$(">*",this).remove();
																		$(this).append("<img src=\"./img/pc/ex_concept_s.jpg\" />");
																	}).animate({opacity:1},"slow",function(){});
					$("#brand_c_p").html("<img src=\"./img/pc/point_off.gif\" />");
					$("#season_c_p").html("<img src=\"./img/pc/point_on.gif\" />");
				}
			});
			
			$("#main_top").css("background-image","url(\"./img/pc/ex_12.jpg\")").css("opacity","0").animate({opacity:1},"1500");
			$("#main_top2").css("background-image","url(\"./img/pc/designer_s.jpg\")").css("opacity","0").animate({opacity:1},"1500");

}); 