﻿$(document).ready(
		function () {

		    /*$('#header').html('').flash(
		    {
		    swf: '/_layout/cs_header.swf',
		    height: '100%',
		    width: '956',
		    params: {
		    bgcolor: '#FFFFFF',
		    wmode: 'transparent',
		    flashvars: {
		    pgname: $("body").attr("id").replace("bodyid_", ""),
		    headerswf: '_layout/cs_home.swf'
		    }
		    }
		    }
		    );*/

		    $(".homebtn img").each(function () {

		        $(this).qtip(
	  {
	      content: $(this).attr('alt'), // Set the tooltip content to the current corner
	      position: {
	          corner: {
	              tooltip: "bottomMiddle", // Use the corner...
	              target: "topMiddle" // ...and opposite corner
	          }
	      },
	      style: {
	          name: 'light', // Give it the preset dark style
	          border: {
	              width: 0,
	              radius: 8
	          },
	          tip: true // Apply a tip at the default tooltip corner
	      }
	  });
		    });
		});