$(document).ready(function(){

	//--------------------------------------//
	//jquery.corner.js
	//--------------------------------------//
    $(".boxC").corner();
    $(".boxCB").corner();
    

	//--------------------------------------//
	//jquery.innerfade.js
	//--------------------------------------//   
	/*$('#mainImgL ul').innerfade({
		speed:1000,
		timeout:5000,
		type: 'sequence',
		containerheight: '264px'
	});*/
	
	
	//--------------------------------------//
	//jquery.rollover.js
	//--------------------------------------//   
	$('#mainImgR ul li').wink(500);
	
	//--------------------------------------//
	//jquery.innerfade.js
	//--------------------------------------//  
	$("#slider").easySlider({
		auto: true, 
		continuous: true,
		numeric: true,
		speed:600,
		pause:4000
	});
	
	//--------------------------------------//
	//column rollover
	//--------------------------------------// 

	$('dl.box').mouseover(function(){
		$(this).css({background:'#ddd'});
	});
	
	$('dl.box').mouseout(function(){
		$(this).css({background:'#eee'});
	});
	
	$('.columnL div').mouseover(function(){
		$(this).css({background:'#049B36'});
	});
	
	$('.columnL div').mouseout(function(){
		$(this).css({background:'#eee'});
	});
	
	$('.columnC div').mouseover(function(){
		$(this).css({background:'#049B36'});
	});
	
	$('.columnC div').mouseout(function(){
		$(this).css({background:'#eee'});
	});
	
	$('.columnR div').mouseover(function(){
		$(this).css({background:'#049B36'});
	});
	
	$('.columnR div').mouseout(function(){
		$(this).css({background:'#eee'});
	});
	
	
	$('#bottomWrappe').mouseover(function(){
		$(this).css({background:'#ddd'});
	});
	
	$('#bottomWrappe').mouseout(function(){
		$(this).css({background:'#eee'});
	});
	
	//--------------------------------------//
	//column rollover
	//--------------------------------------// 
	
	
});
