// JavaScript Document

$(document).ready(function(){					   
						   
var image1 = $('<img />').attr('src', 'template/template_over_06.jpg');
var image2 = $('<img />').attr('src', 'template/template_over_08.jpg');
var image3 = $('<img />').attr('src', 'template/template_over_09.jpg');
var image4 = $('<img />').attr('src', 'template/template_over_10.jpg');
var image5 = $('<img />').attr('src', 'template/template_over_11.png');
						   
var t = 'fast';
//  ROLLOVERS
  $("#homeBT1").mouseover(function(){
	$("#homeBT1").attr('src', 'template/template_over_06.jpg');
	$("#homeBT1").css({'width':'326px','height':'82px','left':'596px', 'top':'205px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'200'});
  });                                                                                                                                                      
  $("#homeBT2").mouseover(function(){                                                                                                                      
	$("#homeBT2").attr('src', 'template/template_over_08.jpg');                                                                                            
	$("#homeBT2").css({'width':'326px','height':'77px','left':'596px', 'top':'287px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'200'});
  });                                                                                                                                                      
  $("#homeBT3").mouseover(function(){                                                                                                                      
	$("#homeBT3").attr('src', 'template/template_over_09.jpg');                                                                                            
	$("#homeBT3").css({'width':'326px','height':'78px','left':'596px', 'top':'364px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'200'});
  });                                                                                                                                                      
  $("#homeBT4").mouseover(function(){                                                                                                                      
	$("#homeBT4").attr('src', 'template/template_over_10.jpg');                                                                                            
	$("#homeBT4").css({'width':'326px','height':'77px','left':'596px', 'top':'442px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'200'});
  });                                                                                                                                                      
  $("#homeBT5").mouseover(function(){                                                                                                                      
	$("#homeBT5").attr('src', 'template/template_over_11.png');                                                                                            
	$("#homeBT5").css({'width':'326px','height':'80px','left':'596px', 'top':'519px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'200'});
  });                                                                                                                                                      

//  ROLLOUTS
  $("#homeBT1").mouseout(function(){
	$("#homeBT1").attr('src', 'template/template_06.jpg');
	$("#homeBT1").css({'width':'326px','height':'82px','left':'596px', 'top':'205px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'100'});
  });
  $("#homeBT2").mouseout(function(){
	$("#homeBT2").attr('src', 'template/template_08.jpg');
	$("#homeBT2").css({'width':'326px','height':'77px','left':'596px', 'top':'287px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'100'});
  });
  $("#homeBT3").mouseout(function(){
	$("#homeBT3").attr('src', 'template/template_09.jpg');
	$("#homeBT3").css({'width':'326px','height':'78px','left':'596px', 'top':'364px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'100'});
  });
  $("#homeBT4").mouseout(function(){
	$("#homeBT4").attr('src', 'template/template_10.jpg');
	$("#homeBT4").css({'width':'326px','height':'77px','left':'596px', 'top':'442px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'100'});
  });
  $("#homeBT5").mouseout(function(){
	$("#homeBT5").attr('src', 'template/template_11.png');
	$("#homeBT5").css({'width':'326px','height':'80px','left':'596px', 'top':'519px', 'background-image':'none', 'padding-right': '0px', 'padding-top': '0px', 'zIndex':'100'});
  });
});
