/*portfolio on main page for safari style*/
$(document).ready(
  function() {
  	$(".safari .carousel").hover(
	function() {
		var n = $(this).children().children().children().children('.worktitletext');
		var a = $(this).children().children().children().children('.workinfo');
		var s = $(this).children('.arrow_slide');
		n.fadeIn(300);
		a.fadeIn(300);
		s.fadeIn(300);
  	}, 
	function() {
		var n = $(this).children().children().children().children('.worktitletext');
		var a = $(this).children().children().children().children('.workinfo');
		var s = $(this).children('.arrow_slide');
		s.fadeOut(300);
		n.fadeOut(300);
		a.fadeOut(300);
  	});
  }
);

/*portfolio on main page for macintosh style*/
$(document).ready(
  function() {
  	$(".macintosh .carousel .carousel_block").hover(
	function() {
		var t = $(this).children().children().children('.workinfo');
		t.fadeIn(300);
  	},
  	function() {
		var t = $(this).children().children().children('.workinfo');
		t.fadeOut(300);
  	});
  }
);

try { document.execCommand("BackgroundImageCache",false,true); } catch(e) {};
