/*
jQuery Blink
Author: WonderGroup, Jordan Thomas
URL: http://labs.wondergroup.com/demos/mini-ui/index.html
License: MIT (http://en.wikipedia.org/wiki/MIT_License)
*/
jQuery.fn.blink = function(o) {
	var d = { speed: 600, blinks: 10000, callback: null };
	var o = jQuery.extend(d, o);
	
	return this.each( function() {
		var calls = 0;
		for (i=1;i<=o.blinks;i++) {
			$(this).animate({
				opacity: 1
			}, o.speed).animate({
				opacity: 1
			}, o.speed, function() {
				calls++;
				if (calls == o.blinks && jQuery.isFunction(o.callback)) { o.callback(); }
				if (document.getElementById('paros_villog').innerHTML=='1') {
					document.getElementById('paros_villog').innerHTML='2';
					document.getElementById('villog1_1').innerHTML='<img src="pic/highlights_bottom/cons_serv_onl_1_en.png" border="0" />';
					document.getElementById('villog2_1').innerHTML='<img src="pic/highlights_bottom/how_busin_1_en.png" border="0" />';
					document.getElementById('villog3_1').innerHTML='<img src="pic/highlights_bottom/indo_prod_1_en.png" border="0" />';
					document.getElementById('villog4_1').innerHTML='<img src="pic/highlights_bottom/hi_tech_1_en.png" border="0" />';
					document.getElementById('villog5_1').innerHTML='<img src="pic/highlights_bottom/photo_gallery_1_en.png" border="0" />';
					document.getElementById('villog6_1').innerHTML='<img src="pic/highlights_bottom/imp_msg_1_en.png" border="0" />';
				} else {
					document.getElementById('paros_villog').innerHTML='1';
					document.getElementById('villog1_1').innerHTML='<img src="pic/highlights_bottom/cons_serv_onl_2_en.png" border="0" />';
					document.getElementById('villog2_1').innerHTML='<img src="pic/highlights_bottom/how_busin_2_en.png" border="0" />';
					document.getElementById('villog3_1').innerHTML='<img src="pic/highlights_bottom/indo_prod_2_en.png" border="0" />';
					document.getElementById('villog4_1').innerHTML='<img src="pic/highlights_bottom/hi_tech_2_en.png" border="0" />';
					document.getElementById('villog5_1').innerHTML='<img src="pic/highlights_bottom/photo_gallery_2_en.png" border="0" />';
					document.getElementById('villog6_1').innerHTML='<img src="pic/highlights_bottom/imp_msg_2_en.png" border="0" />';
				}
			});
		}
	});
};
